home *** CD-ROM | disk | FTP | other *** search
/ LG Super CD / LG Super CD.iso / midi editor / format.doc < prev    next >
Encoding:
Text File  |  1999-07-04  |  6.1 KB  |  138 lines

  1. GNMIDFMT HELP ON MIDI FORMATS
  2. ==================================================================
  3.  
  4. Standard MIDI file format (.mid) is available in 3 different formats:
  5.   Format 0, Format 1, Format 2
  6.  
  7. The numbers 0-2 are from header of .mid files.
  8.  
  9. The MIDI format is also known as MIDI type, MIDI version.
  10. The 3 formats are not totally different encoded, only different 
  11. organized and interpretated.
  12.  
  13. Generally for all formats
  14. -------------------------
  15. A midi file consists of a simple header and one or more tracks.
  16. Each track contains pauses and MIDI commands. Most MIDI commands (e.g. 
  17. notes, controllers, ...) are identical to MIDI standard protocol, some 
  18. commands were added special to MIDI file format (META Events, e.g. tempo, 
  19. tact, text ...).
  20. Within a track the commands are interpretated (e.g. played) in order
  21. of occurence, the pauses between commands delay the interpretation for
  22. certain time.  Many commands (e.g. notes) are assigned to a channel (1-16)
  23. which defines a sound setup at a time (e.g. channel 10 plays drums at
  24. certain volume with some effects).
  25.  
  26. The MIDI format (0,1,2) decide 
  27.   * how many tracks are allowed
  28.   * what tracks should contain (channels, commands)
  29.   * how tracks are played together with others (parallel, serial)
  30.   * how tempo is controlled
  31.  
  32. MIDI Format 0
  33. --------------
  34.  * A format 0 MIDI file has only one track.
  35.  * This track contains all commands of all 16 channels and they are
  36.    sorted by time depending on the pauses between commands.
  37.  * The only available track contains whole song.
  38.  * Tempo is applied when it occurs inside the format 0 track.
  39.  
  40.   The MIDI format 0 is very popular, all MIDI players support this 
  41.   format. Many devices (keyboards, modules, players) support only 
  42.   this format, because it is easier to handle (commands are already 
  43.   sorted by time, player only needs to wait the pauses and then fire
  44.   command after command to the synthesizer).
  45.  
  46. MIDI Format 1
  47. --------------
  48.  * Format 1 MIDI file has at least one track. Number is not limited
  49.    except by certain applications (usually to 256 tracks)
  50.  * First track is intended for conductor and contains only commands
  51.    that are not channel depending (tempo, tact, text, key,...).
  52.    Each other track should not contain tempo or tact, it should contain
  53.    commands for certain channel (1-16). Some applications also allow
  54.    using more channels in a track. It is allowed to use more tracks
  55.    with a certain channel, the tracks share the setup of this channel
  56.    if the commands refer to same output device (port).
  57.  * The tracks play together at same time (parallel). 
  58.    All tracks together are one song.
  59.  * Tempo and tact should be only used in conductor track (first track),
  60.    the other tracks play to conductors timing.
  61.  
  62.   The MIDI format 1 is very popular, most software players and editors 
  63.   (MIDI Sequencer) support this format. Human like it because it allows
  64.   to organize own sequences logically (a track for conductor, for bass, 
  65.   for melody, for strings, for lyrics, ...). This format is also 
  66.   popular for printing, each track can be printed as a stuff line in 
  67.   a score sheet. Karaoke files *.kar are in this format.
  68.   For hardware players this format is more difficult to support because
  69.   the commands from all tracks must be merged before playing or at 
  70.   realtime. Many (older) keyboards don't support loading format 1 
  71.   to save costs.
  72.  
  73. MIDI Format 2
  74. --------------
  75.   * MIDI format 2 has at least one track, usually more tracks
  76.   * each track contains a whole song, all songs have same resolution (= units per quarternote)
  77.   * the tracks play one after one (serial), single tracks/songs can be referenced
  78.     by an application to play certain song or song list in certain order.
  79.   * each song is itself organized like a format 0 song, all commands including tempo
  80.     are within a track.
  81.  
  82.   The MIDI format 2 is rarely used, most players and editors can't read
  83.   this format. It is used by few applications to archive more songs
  84.   to access songs by random or to organize depending songs in a package.
  85.   It is not recommended to distribute songs in this format.
  86.  
  87. Conversions
  88. ===========
  89. MIDI format 1 to 0
  90. ------------------
  91.   All tracks are merged to one track, commands must be sorted by time.
  92.   The conversion looses information: 
  93.     track number where the command was originally
  94.     (e.g. a track for  piano left hand and one for right hand on
  95.      same track, the tracks are merged and distinguish
  96.      left/right hand is not available anymore).
  97.  
  98. MIDI format 1 to 2
  99. ------------------
  100.   First format 1 must be converted to format 0, then the format is
  101.   close to format 2 and can be converted to format 2 (see format 0 to 2). 
  102.  
  103. MIDI format 0 to 2
  104. ------------------
  105. One format 0 song is nearly format 2, only the format indicator must be set to 2.
  106. If more songs are included in the format 2 then 
  107. must modify the midi resolution to a common factor and recalculate
  108. the pauses relative to the new resolution. 
  109. The quantization to new resolution can generate small inexactness
  110. in pauses. Best new resolution is smallest common multiplicator of all
  111. resolutions. The resolution value should not be too high, because some
  112. players don't support high precision resolution and refuse playing them.
  113.   
  114. MIDI format 0 to 1
  115. -------------------
  116. The single track must be divided into more tracks.
  117. Usually this is done by seperating the timing information (tact, tempo)
  118. into first track (conductor) and the individual channels into own tracks.
  119. It is also possible to create seperate tracks for each program and
  120. for each drum instrument.
  121.  (GNMIDI has operations to split programs and drums)
  122. The seperation into tracks is not unique, applications can use different
  123. ways.
  124.     
  125.  
  126. MIDI format 2 to 0
  127. ------------------
  128. A MIDI format 2 can contain several songs, which are all nearly format 0
  129. formatted. Generate a new midi file format 0 for each of these files.
  130. The files have same resolution.
  131.  
  132. MIDI format 2 to 1
  133. ------------------
  134. MIDI format 2 must first be converted to one or more format 0 files,
  135. then each one can be converted to format 1 (see format 0 to 1).
  136.  
  137.  
  138.